getString static method
Implementation
static Future<String?> getString(String key, {UStorageBucket bucket = UStorageBucket.support}) async {
final Uint8List? bytes = await getBytes(key, bucket: bucket);
return bytes == null ? null : utf8.decode(bytes, allowMalformed: true);
}