copyWith method

InputSuggestedPostInfo copyWith({
  1. SuggestedPostPrice? price,
  2. int? sendDate,
})

Implementation

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