getNativeImage<T> method

Future<T?>? getNativeImage<T>(
  1. String imageName,
  2. String suffix,
  3. bool isByte
)

Implementation

Future<T?>? getNativeImage<T>(String imageName, String suffix, bool isByte) {
  return CloudChannelManager.instance.channel
      ?.invokeMethod<T>(nativeImageProviderMethodName, {"imageName": imageName, "suffix": suffix, "isByte": isByte});
}