copyWith method
MessageSendOptions
copyWith({
- bool? disableNotification,
- bool? fromBackground,
- bool? protectContent,
- MessageSchedulingState? schedulingState,
Implementation
MessageSendOptions copyWith({
bool? disableNotification,
bool? fromBackground,
bool? protectContent,
MessageSchedulingState? schedulingState,
}) => MessageSendOptions(
disableNotification: disableNotification ?? this.disableNotification,
fromBackground: fromBackground ?? this.fromBackground,
protectContent: protectContent ?? this.protectContent,
schedulingState: schedulingState ?? this.schedulingState,
);