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