RefreshCancellationStatus.fromJson constructor
RefreshCancellationStatus.fromJson(
- Map json_
Implementation
RefreshCancellationStatus.fromJson(core.Map json_)
: this(
errorCode: json_.containsKey('errorCode')
? json_['errorCode'] as core.String
: null,
state:
json_.containsKey('state') ? json_['state'] as core.String : null,
);