CreateFooterRequest.fromJson constructor
CreateFooterRequest.fromJson(
- Map json_
Implementation
CreateFooterRequest.fromJson(core.Map json_)
: this(
sectionBreakLocation: json_.containsKey('sectionBreakLocation')
? Location.fromJson(json_['sectionBreakLocation']
as core.Map<core.String, core.dynamic>)
: null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
);