toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final cryptoKeyName = this.cryptoKeyName;
final description = this.description;
final instructions = this.instructions;
final labels = this.labels;
final name = this.name;
final serviceAccount = this.serviceAccount;
final state = this.state;
final stateDetails = this.stateDetails;
return {
'createTime': ?createTime,
'cryptoKeyName': ?cryptoKeyName,
'description': ?description,
'instructions': ?instructions,
'labels': ?labels,
'name': ?name,
'serviceAccount': ?serviceAccount,
'state': ?state,
'stateDetails': ?stateDetails,
};
}