WikiResponse constructor

const WikiResponse({
  1. required bool success,
  2. required Map<String, dynamic> rawResponse,
  3. int? pageId,
  4. String? title,
  5. String? description,
  6. String? extract,
  7. List<Tuple2<String, String>>? langlinks,
})

Implementation

const WikiResponse({
  required this.success,
  required this.rawResponse,
  this.pageId,
  this.title,
  this.description,
  this.extract,
  this.langlinks,
});