AttributeTypeAndValue.fromJson constructor

AttributeTypeAndValue.fromJson(
  1. Map json_
)

Implementation

AttributeTypeAndValue.fromJson(core.Map json_)
  : this(
      objectId:
          json_.containsKey('objectId')
              ? ObjectId.fromJson(
                json_['objectId'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      type: json_['type'] as core.String?,
      value: json_['value'] as core.String?,
    );