copyWith method

PushMessageContentText copyWith({
  1. String? text,
  2. bool? isPinned,
})

Implementation

PushMessageContentText copyWith({String? text, bool? isPinned}) =>
    PushMessageContentText(
      text: text ?? this.text,
      isPinned: isPinned ?? this.isPinned,
    );