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