findPath static method

Future<String?> findPath(
  1. String imageId
)

Acquire the saved image path.

Implementation

static Future<String?> findPath(String imageId) async {
  return _channel.invokeMethod<String>('findPath', {'imageId': imageId});
}