byInt method

int? byInt(
  1. String key
)

Implementation

int? byInt(String key) {
  if (this[key] == null) return null;
  return double.parse(byString(key)!).toInt();
}