static bool? nullableBoolMappedFromXml(Map<String, dynamic>? value) => value != null ? boolMappedFromXml(value) : null;