DocumentReference.fromJson constructor

DocumentReference.fromJson(
  1. Map json_
)

Implementation

DocumentReference.fromJson(core.Map json_)
  : this(
      documentChunk: json_.containsKey('documentChunk')
          ? DocumentChunk.fromJson(
              json_['documentChunk'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );