DeletionMetadata.fromJson constructor

DeletionMetadata.fromJson(
  1. Map json_
)

Implementation

DeletionMetadata.fromJson(core.Map json_)
    : this(
        deletionType: json_.containsKey('deletionType')
            ? json_['deletionType'] as core.String
            : null,
      );