toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (errorCode != null) 'errorCode': errorCode!,
  if (errorCodeDetail != null) 'errorCodeDetail': errorCodeDetail!,
  if (operationCode != null) 'operationCode': operationCode!,
  if (operationCodeDetail != null)
    'operationCodeDetail': operationCodeDetail!,
};