toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final creationRequestId = this.creationRequestId;
final displayName = this.displayName;
final name = this.name;
final regionCode = this.regionCode;
final state = this.state;
final timeZone = this.timeZone;
return {
'createTime': ?createTime,
'creationRequestId': ?creationRequestId,
'displayName': ?displayName,
'name': ?name,
'regionCode': ?regionCode,
'state': ?state,
'timeZone': ?timeZone,
};
}