toJson method

Map<String, dynamic> toJson()

Implementation

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