toJson method

Map<String, dynamic> toJson()

Implementation

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