copyWith method

  1. @override
PushMessageContentAudio copyWith({
  1. Audio? audio,
  2. bool? isPinned,
})
override

Implementation

@override
PushMessageContentAudio copyWith({
  Audio? audio,
  bool? isPinned,
}) => PushMessageContentAudio(
  audio: audio ?? this.audio,
  isPinned: isPinned ?? this.isPinned,
);