copyWith method

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

Implementation

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