copyWith method

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

Implementation

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