copyWith method

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

Implementation

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