readAll method

  1. @override
Future<Map<String, String>> readAll({
  1. required Map<String, String> options,
})
override

Implementation

@override
Future<Map<String, String>> readAll({
  required Map<String, String> options,
}) async {
  final results = await _channel.invokeMapMethod<String, String>(
    'readAll',
    {
      'options': options,
    },
  );

  return results ?? const <String, String>{};
}