getInt method

int? getInt(
  1. String key
)

Implementation

int? getInt(String key) {
  return _data[key] is int ? _data[key] : null;
}