fromJson static method
Implementation
// ignore: prefer_constructors_over_static_methods
static MonthDate? fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
return MonthDate(
month: mapValueOfType<int>(json, r'month'),
year: mapValueOfType<int>(json, r'year'),
);
}
return null;
}