getImgById static method

Img? getImgById(
  1. int id
)

Get the image by its ID

Returns

  • The image with the given ID. The user is responsible to check if the image is valid. Returns null if no image with the given ID exists

Implementation

static Img? getImgById(int id) {
  final OperationResult resultString = staticMethod(
    'SdkSettings',
    'getImgById',
    args: id,
  );

  if (resultString['result'] == -1) {
    return null;
  }

  return Img.init(resultString['result']);
}