setSeeds method

Future<bool> setSeeds(
  1. String seedType,
  2. Map value
)

Implementation

Future<bool> setSeeds(String seedType, Map value) async {
  return storage.setKV('${seedKey}_$seedType', jsonEncode(value));
}