EventOutOfOfficeProperties.fromJson constructor
EventOutOfOfficeProperties.fromJson(
- Map json_
Implementation
EventOutOfOfficeProperties.fromJson(core.Map json_)
: this(
autoDeclineMode: json_.containsKey('autoDeclineMode')
? json_['autoDeclineMode'] as core.String
: null,
declineMessage: json_.containsKey('declineMessage')
? json_['declineMessage'] as core.String
: null,
);