getString method

String? getString(
  1. String key
)

Function to get a string from the room

Implementation

String? getString(String key) {
  var cdata = getKey(key);
  try {
    return cdata as String;
  } catch (e) {
    return null;
  }
}