mergeToFile method
Merge multiple images and get file.
Implementation
@override
Future<File?> mergeToFile({required ImageMergeOption option}) async {
String? filePath = await NativeChannel.channel.invokeMethod('mergeToFile', {
'option': option.toJson(),
});
return filePath != null ? File(filePath) : null;
}