getDownloadOptions method

  1. @override
Future<Map<String, String>> getDownloadOptions(
  1. String gid
)
override

Implementation

@override
Future<Map<String, String>> getDownloadOptions(String gid) async {
  final result = await _invokeRequired<Map>('getDownloadOptions', {'gid': gid});
  return Map<String, String>.from(result);
}