getOptBool method

bool? getOptBool(
  1. String key
)

Implementation

bool? getOptBool(String key) => this[key] != null ? this[key] as bool : null;