readAll method

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

Reads and returns all key-value pairs from memory.

Implementation

@override
Future<Map<String, String>> readAll() =>
    Future.value(Map<String, String>.from(_map));