AnswerShippingQuery constructor

const AnswerShippingQuery({
  1. required int shippingQueryId,
  2. required List<ShippingOption> shippingOptions,
  3. required String errorMessage,
})

Sets the result of a shipping query; for bots only

Implementation

const AnswerShippingQuery({
  required this.shippingQueryId,
  required this.shippingOptions,
  required this.errorMessage,
});