copyWith method

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

Implementation

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