decodeFrom static method

Future<String?> decodeFrom(
  1. String filePath
)

filePath is local file path

Implementation

static Future<String?> decodeFrom(String filePath) {
  return _channel.invokeMethod('decoder', {'file': filePath});
}