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