copyWith method

ErrorCodeOther copyWith({
  1. Object? value = _acpCopyWithAbsent,
})

Implementation

ErrorCodeOther copyWith({Object? value = _acpCopyWithAbsent}) =>
    ErrorCodeOther(
      identical(value, _acpCopyWithAbsent) ? this.value : value as int,
    );