GoogleFirestoreAdminV1WeeklyRecurrence.fromJson constructor
GoogleFirestoreAdminV1WeeklyRecurrence.fromJson(
- Map json_
Implementation
GoogleFirestoreAdminV1WeeklyRecurrence.fromJson(core.Map json_)
: this(
day: json_.containsKey('day') ? json_['day'] as core.String : null,
time: json_.containsKey('time')
? TimeOfDay.fromJson(
json_['time'] as core.Map<core.String, core.dynamic>)
: null,
);