GoogleAppsCardV1DateTimePicker.fromJson constructor
GoogleAppsCardV1DateTimePicker.fromJson(
- Map json_
Implementation
GoogleAppsCardV1DateTimePicker.fromJson(core.Map json_)
: this(
label: json_['label'] as core.String?,
name: json_['name'] as core.String?,
onChangeAction: json_.containsKey('onChangeAction')
? GoogleAppsCardV1Action.fromJson(json_['onChangeAction']
as core.Map<core.String, core.dynamic>)
: null,
timezoneOffsetDate: json_['timezoneOffsetDate'] as core.int?,
type: json_['type'] as core.String?,
valueMsEpoch: json_['valueMsEpoch'] as core.String?,
);