UserInitiatedCancellation.fromJson constructor
UserInitiatedCancellation.fromJson(
- Map json_
Implementation
UserInitiatedCancellation.fromJson(core.Map json_)
: this(
cancelSurveyResult:
json_.containsKey('cancelSurveyResult')
? CancelSurveyResult.fromJson(
json_['cancelSurveyResult']
as core.Map<core.String, core.dynamic>,
)
: null,
cancelTime: json_['cancelTime'] as core.String?,
);