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