BMFPoiBoundSearchOption constructor Null safety

BMFPoiBoundSearchOption(
  1. {required List<String>? keywords,
  2. List<String>? tags,
  3. required dynamic leftBottom,
  4. required dynamic rightTop,
  5. BMFPoiSearchScopeType? scope = BMFPoiSearchScopeType.BASIC_INFORMATION,
  6. BMFPoiSearchFilter? filter,
  7. int? pageIndex = 0,
  8. int? pageSize = 10,
  9. bool? extensionsAdcode = false}
)

有参构造

Implementation

BMFPoiBoundSearchOption({
  required this.keywords,
  this.tags,
  required this.leftBottom,
  required this.rightTop,
  this.scope: BMFPoiSearchScopeType.BASIC_INFORMATION,
  this.filter,
  this.pageIndex: 0,
  this.pageSize: 10,
  this.extensionsAdcode: false,
});