toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final account = this.account;
  final batchId = this.batchId;
  final errors = this.errors;
  final kind = this.kind;
  return {
    'account': ?account,
    'batchId': ?batchId,
    'errors': ?errors,
    'kind': ?kind,
  };
}