copyWith method
Implementation
ExceptionInfo copyWith({
String? type,
String? message,
String? description,
}) =>
ExceptionInfo(type: type ?? this.type, message: message ?? this.message, description: description ?? this.description);
ExceptionInfo copyWith({
String? type,
String? message,
String? description,
}) =>
ExceptionInfo(type: type ?? this.type, message: message ?? this.message, description: description ?? this.description);