$FieldReference.fromJson constructor

$FieldReference.fromJson(
  1. Map _json
)

Implementation

$FieldReference.fromJson(core.Map _json)
    : this(
        fieldPath: _json.containsKey('fieldPath')
            ? _json['fieldPath'] as core.String
            : null,
      );