getStoreValue function

Future<String?> getStoreValue(
  1. String k
)

Implementation

Future<String?> getStoreValue(String k) async {
  return await getStoreByKey(k);
}