getInt method

int? getInt(
  1. String key
)

Function to get an int from the room

Implementation

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