copyWith method

PushMessageContentLocation copyWith({
  1. bool? isLive,
  2. bool? isPinned,
})

Implementation

PushMessageContentLocation copyWith({bool? isLive, bool? isPinned}) =>
    PushMessageContentLocation(
      isLive: isLive ?? this.isLive,
      isPinned: isPinned ?? this.isPinned,
    );