FieldReference.fromJson constructor
FieldReference.fromJson(
- Map json_
Implementation
FieldReference.fromJson(core.Map json_)
: this(
dateFormat: json_.containsKey('dateFormat')
? json_['dateFormat'] as core.String
: null,
fieldPath: json_.containsKey('fieldPath')
? json_['fieldPath'] as core.String
: null,
);