toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final etag = this.etag;
final id = this.id;
final profileMetadata = this.profileMetadata;
final type = this.type;
final updateTime = this.updateTime;
return {
'etag': ?etag,
'id': ?id,
'profileMetadata': ?profileMetadata,
'type': ?type,
'updateTime': ?updateTime,
};
}