InlineQuery constructor

const InlineQuery({
  1. required String id,
  2. required User from,
  3. required String query,
  4. required String offset,
  5. ChatType? chatType,
  6. Location? location,
})

Constructs an InlineQuery object

Implementation

const InlineQuery({
  required this.id,
  required this.from,
  required this.query,
  required this.offset,
  this.chatType,
  this.location,
});