boolean static method

bool? boolean(
  1. Map<String, Object?> map,
  2. String key
)

Implementation

static bool? boolean(
  Map<String, Object?> map,
  String key,
) {
  return map[key] as bool?;
}