DocumentData.fromJson constructor

DocumentData.fromJson(
  1. Map<String, Object?> json
)

Creates an instance of DocumentData from a map of String, Object?.

This factory constructor is used for deserializing JSON data into an DocumentData object.

Implementation

factory DocumentData.fromJson(Map<String, Object?> json) =>
    _$DocumentDataFromJson(json);