webUriToImage static method

Future<Uint8List> webUriToImage({
  1. required String uri,
  2. double duration = 2000,
  3. String? executablePath,
  4. bool autoClosePage = true,
  5. int scale = 3,
})

Implementation

static Future<Uint8List> webUriToImage({
  required String uri,
  double duration: 2000,
  String? executablePath,
  bool autoClosePage = true,
  int scale = 3,
}) async {
  UnimplementedError('webUriToImage');
  return Future.value(Uint8List.fromList([]));
}