getBool static method

Future<bool?> getBool({
  1. String? key,
})

Implementation

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