copyWith method

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

Implementation

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