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