getBoolean method

bool? getBoolean(
  1. String key
)

Get map value by key as boolean.

Implementation

bool? getBoolean(String key) {
  if (!this.containsKey(key)) {
    return null;
  }

  if (this[key] is! bool) {
    return null;
  }

  return this[key];
}