getInt static method

Future<int?> getInt({
  1. String? key,
})

Implementation

static Future<int?> getInt({String? key}) {
  return _get<int>(key: key, getType: "int");
}