toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final applicationId = this.applicationId;
final customerId = this.customerId;
final editionId = this.editionId;
final enabled = this.enabled;
final id = this.id;
final kind = this.kind;
final state = this.state;
final userId = this.userId;
return {
'applicationId': ?applicationId,
'customerId': ?customerId,
'editionId': ?editionId,
'enabled': ?enabled,
'id': ?id,
'kind': ?kind,
'state': ?state,
'userId': ?userId,
};
}