toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deletionRequestTime = this.deletionRequestTime;
final firebaseProjectId = this.firebaseProjectId;
final id = this.id;
final kind = this.kind;
final propertyId = this.propertyId;
final webPropertyId = this.webPropertyId;
return {
'deletionRequestTime': ?deletionRequestTime?.toUtc().toIso8601String(),
'firebaseProjectId': ?firebaseProjectId,
'id': ?id,
'kind': ?kind,
'propertyId': ?propertyId,
'webPropertyId': ?webPropertyId,
};
}