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