UserDeletionRequest.fromJson constructor

UserDeletionRequest.fromJson(
  1. Map json_
)

Implementation

UserDeletionRequest.fromJson(core.Map json_)
    : this(
        deletionRequestTime: json_.containsKey('deletionRequestTime')
            ? core.DateTime.parse(json_['deletionRequestTime'] as core.String)
            : null,
        firebaseProjectId: json_.containsKey('firebaseProjectId')
            ? json_['firebaseProjectId'] as core.String
            : null,
        id: json_.containsKey('id')
            ? UserDeletionRequestId.fromJson(
                json_['id'] as core.Map<core.String, core.dynamic>)
            : null,
        kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
        propertyId: json_.containsKey('propertyId')
            ? json_['propertyId'] as core.String
            : null,
        webPropertyId: json_.containsKey('webPropertyId')
            ? json_['webPropertyId'] as core.String
            : null,
      );