// ignore_for_file: non_constant_identifier_names, camel_case_types, missing_return, unused_import, unused_local_variable, dead_code, unnecessary_cast ////////////////////////////////////////////////////////// // GENERATED BY FLUTTIFY. DO NOT EDIT IT. ////////////////////////////////////////////////////////// import 'dart:typed_data'; import 'package:amap_search_fluttify/src/ios/ios.export.g.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter/services.dart'; import 'package:foundation_fluttify/foundation_fluttify.dart'; import 'package:core_location_fluttify/core_location_fluttify.dart'; import 'package:amap_core_fluttify/amap_core_fluttify.dart'; class AMapCloudPOILocalSearchRequest extends AMapCloudSearchBaseRequest with NSCoding, NSCopying { //region constants static const String name__ = 'AMapCloudPOILocalSearchRequest'; @override final String tag__ = 'amap_search_fluttify'; //endregion //region creators static Future create__({ bool init = true /* ios only */ }) async { final __result__ = await kAmapSearchFluttifyChannel.invokeMethod( 'ObjectFactory::createAMapCloudPOILocalSearchRequest', {'init': init} ); return AmapSearchFluttifyIOSAs(__result__)!; } static Future> create_batch__(int length, { bool init = true /* ios only */ }) async { assert(true); final __result_batch__ = await kAmapSearchFluttifyChannel.invokeListMethod( 'ObjectFactory::create_batchAMapCloudPOILocalSearchRequest', {'length': length, 'init': init} ); return __result_batch__ ?.map((it) => AmapSearchFluttifyIOSAs(it)) .where((element) => element !=null) .cast() .toList() ?? []; } //endregion //region getters Future get_keywords() async { final __result__ = await kAmapSearchFluttifyChannel.invokeMethod("AMapCloudPOILocalSearchRequest::get_keywords", {'__this__': this}); return __result__; } Future get_city() async { final __result__ = await kAmapSearchFluttifyChannel.invokeMethod("AMapCloudPOILocalSearchRequest::get_city", {'__this__': this}); return __result__; } //endregion //region setters Future set_keywords(String keywords) async { await kAmapSearchFluttifyChannel.invokeMethod('AMapCloudPOILocalSearchRequest::set_keywords', {'__this__': this, "keywords": keywords}); } Future set_city(String city) async { await kAmapSearchFluttifyChannel.invokeMethod('AMapCloudPOILocalSearchRequest::set_city', {'__this__': this, "city": city}); } //endregion //region methods //endregion @override String toString() { return 'AMapCloudPOILocalSearchRequest{refId: $refId, runtimeType: $runtimeType, tag__: $tag__}'; } } extension AMapCloudPOILocalSearchRequest_Batch on List { String? get refId { if (isEmpty) return null; return first?.refId; } //region getters Future> get_keywords_batch() async { final resultBatch = await kAmapSearchFluttifyChannel.invokeMethod("AMapCloudPOILocalSearchRequest::get_keywords_batch", [for (final __item__ in this) {'__this__': __item__}]); return (resultBatch as List).map((__result__) => __result__).cast().toList(); } Future> get_city_batch() async { final resultBatch = await kAmapSearchFluttifyChannel.invokeMethod("AMapCloudPOILocalSearchRequest::get_city_batch", [for (final __item__ in this) {'__this__': __item__}]); return (resultBatch as List).map((__result__) => __result__).cast().toList(); } //endregion //region setters Future set_keywords_batch(List keywords) async { await kAmapSearchFluttifyChannel.invokeMethod('AMapCloudPOILocalSearchRequest::set_keywords_batch', [for (int __i__ = 0; __i__ < this.length; __i__++) {'__this__': this[__i__], "keywords": keywords[__i__]}]); } Future set_city_batch(List city) async { await kAmapSearchFluttifyChannel.invokeMethod('AMapCloudPOILocalSearchRequest::set_city_batch', [for (int __i__ = 0; __i__ < this.length; __i__++) {'__this__': this[__i__], "city": city[__i__]}]); } //endregion //region methods //endregion }