BMFPoiCitySearchOption constructor Null safety

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

有参构造

Implementation

BMFPoiCitySearchOption({
  required this.keyword,
  this.tags,
  required this.city,
  this.isCityLimit: false,
  this.scope: BMFPoiSearchScopeType.BASIC_INFORMATION,
  this.filter,
  this.pageIndex: 0,
  this.pageSize: 10,
  this.extensionsAdcode: false,
});