getBool method

bool? getBool(
  1. String tag
)

Implementation

bool? getBool(String tag) => !containsKey(tag) ? null : this[tag] as bool?;