copyWith method

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

Implementation

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