tryGetBool method

bool? tryGetBool(
  1. String key
)

Implementation

bool? tryGetBool(String key) =>
    containsKey(key) ? getBool(key) : null;