LayoutReference.fromJson constructor
LayoutReference.fromJson(
- Map json_
Implementation
LayoutReference.fromJson(core.Map json_)
: this(
layoutId: json_.containsKey('layoutId')
? json_['layoutId'] as core.String
: null,
predefinedLayout: json_.containsKey('predefinedLayout')
? json_['predefinedLayout'] as core.String
: null,
);