copyWith method

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

Implementation

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