RevertTemplateResponse.fromJson constructor
RevertTemplateResponse.fromJson(
- Map json_
Implementation
RevertTemplateResponse.fromJson(core.Map json_)
: this(
template: json_.containsKey('template')
? CustomTemplate.fromJson(
json_['template'] as core.Map<core.String, core.dynamic>)
: null,
);