ValidateOrderInfo constructor

const ValidateOrderInfo({
  1. required int chatId,
  2. required int messageId,
  3. OrderInfo? orderInfo,
  4. required bool allowSave,
})

Validates the order information provided by a user and returns the available shipping options for a flexible invoice

Implementation

const ValidateOrderInfo({
  required this.chatId,
  required this.messageId,
  this.orderInfo,
  required this.allowSave,
});