Metaline.fromJson constructor
Metaline.fromJson(
- Map json_
Implementation
Metaline.fromJson(core.Map json_)
: this(
properties: json_.containsKey('properties')
? (json_['properties'] as core.List)
.map((value) => DisplayedProperty.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);