toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final errorCode = this.errorCode;
  final errorMessage = this.errorMessage;
  final printServer = this.printServer;
  final printServerId = this.printServerId;
  return {
    'errorCode': ?errorCode,
    'errorMessage': ?errorMessage,
    'printServer': ?printServer,
    'printServerId': ?printServerId,
  };
}