goStore static method

Future goStore(
  1. String filePath
)

Implementation

static Future<dynamic> goStore(String filePath) async {
  Map<String, String> params = {'filePath': filePath};
  final dynamic result = await _channel.invokeMethod('goStore', params);
  return result;
}