getAll method
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),
);