copyWith method

Params copyWith({
  1. int? status,
  2. Error? error,
})

Implementation

Params copyWith({
  int? status,
  Error? error,
}) =>
    Params(
      status: status ?? this.status,
      error: error ?? this.error,
    );