getAll method

Future<List<Map<String, String>>> getAll([
  1. Map? options
])

Implementation

Future<List<Map<String, String>>> getAll([Map? options]) =>
    Future<List<Map<String, String>>>.value(
      _values.entries
          .map((entry) => <String, String>{
                'name': entry.key,
                'value': entry.value,
              })
          .toList(growable: false),
    );