MonthlySchedule.fromJson constructor
MonthlySchedule.fromJson(
- Map json_
Implementation
MonthlySchedule.fromJson(core.Map json_)
: this(
monthDay: json_.containsKey('monthDay')
? json_['monthDay'] as core.int
: null,
weekDayOfMonth: json_.containsKey('weekDayOfMonth')
? WeekDayOfMonth.fromJson(json_['weekDayOfMonth']
as core.Map<core.String, core.dynamic>)
: null,
);