copyWith method

FwStandardModelsFwApiException copyWith({
  1. int? statusCode,
  2. String? message,
  3. String? stackTrace,
})

Implementation

FwStandardModelsFwApiException copyWith(
    {int? statusCode, String? message, String? stackTrace}) {
  return FwStandardModelsFwApiException(
      statusCode: statusCode ?? this.statusCode,
      message: message ?? this.message,
      stackTrace: stackTrace ?? this.stackTrace);
}