static int? nullableIntMappedFromXml(Map<String, dynamic>? value) => value != null ? intMappedFromXml(value) : null;