copyWith method
Implementation
InputSuggestedPostInfo copyWith({SuggestedPostPrice? price, int? sendDate}) =>
InputSuggestedPostInfo(
price: price ?? this.price,
sendDate: sendDate ?? this.sendDate,
);
InputSuggestedPostInfo copyWith({SuggestedPostPrice? price, int? sendDate}) =>
InputSuggestedPostInfo(
price: price ?? this.price,
sendDate: sendDate ?? this.sendDate,
);