getSeeds method

Future<Map> getSeeds(
  1. String? seedType
)

Implementation

Future<Map> getSeeds(String? seedType) async {
  String? value = await storage.getKV('${seedKey}_$seedType');
  if (value != null) {
    return jsonDecode(value);
  }
  return {};
}