// 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_core_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'; class AMapNaviConfig extends NSObject { //region constants static const String name__ = 'AMapNaviConfig'; @override final String tag__ = 'amap_core_fluttify'; //endregion //region creators static Future create__({ bool init = true /* ios only */ }) async { final __result__ = await kAmapCoreFluttifyChannel.invokeMethod( 'ObjectFactory::createAMapNaviConfig', {'init': init} ); return AmapCoreFluttifyIOSAs(__result__)!; } static Future> create_batch__(int length, { bool init = true /* ios only */ }) async { assert(true); final __result_batch__ = await kAmapCoreFluttifyChannel.invokeListMethod( 'ObjectFactory::create_batchAMapNaviConfig', {'length': length, 'init': init} ); return __result_batch__ ?.map((it) => AmapCoreFluttifyIOSAs(it)) .where((element) => element !=null) .cast() .toList() ?? []; } //endregion //region getters Future get_appScheme() async { final __result__ = await kAmapCoreFluttifyChannel.invokeMethod("AMapNaviConfig::get_appScheme", {'__this__': this}); return __result__; } Future get_appName() async { final __result__ = await kAmapCoreFluttifyChannel.invokeMethod("AMapNaviConfig::get_appName", {'__this__': this}); return __result__; } Future get_destination() async { final __result__ = await kAmapCoreFluttifyChannel.invokeMethod("AMapNaviConfig::get_destination", {'__this__': this}); return AmapCoreFluttifyIOSAs(__result__); } Future get_strategy() async { final __result__ = await kAmapCoreFluttifyChannel.invokeMethod("AMapNaviConfig::get_strategy", {'__this__': this}); return (__result__ as int).toAMapDrivingStrategy(); } //endregion //region setters Future set_appScheme(String appScheme) async { await kAmapCoreFluttifyChannel.invokeMethod('AMapNaviConfig::set_appScheme', {'__this__': this, "appScheme": appScheme}); } Future set_appName(String appName) async { await kAmapCoreFluttifyChannel.invokeMethod('AMapNaviConfig::set_appName', {'__this__': this, "appName": appName}); } Future set_destination(CLLocationCoordinate2D destination) async { await kAmapCoreFluttifyChannel.invokeMethod('AMapNaviConfig::set_destination', {'__this__': this, "destination": destination}); } Future set_strategy(AMapDrivingStrategy strategy) async { await kAmapCoreFluttifyChannel.invokeMethod('AMapNaviConfig::set_strategy', {'__this__': this, "strategy": strategy.toValue()}); } //endregion //region methods //endregion @override String toString() { return 'AMapNaviConfig{refId: $refId, runtimeType: $runtimeType, tag__: $tag__}'; } } extension AMapNaviConfig_Batch on List { String? get refId { if (isEmpty) return null; return first?.refId; } //region getters Future> get_appScheme_batch() async { final resultBatch = await kAmapCoreFluttifyChannel.invokeMethod("AMapNaviConfig::get_appScheme_batch", [for (final __item__ in this) {'__this__': __item__}]); return (resultBatch as List).map((__result__) => __result__).cast().toList(); } Future> get_appName_batch() async { final resultBatch = await kAmapCoreFluttifyChannel.invokeMethod("AMapNaviConfig::get_appName_batch", [for (final __item__ in this) {'__this__': __item__}]); return (resultBatch as List).map((__result__) => __result__).cast().toList(); } Future> get_destination_batch() async { final resultBatch = await kAmapCoreFluttifyChannel.invokeMethod("AMapNaviConfig::get_destination_batch", [for (final __item__ in this) {'__this__': __item__}]); return (resultBatch as List).map((__result__) => AmapCoreFluttifyIOSAs(__result__)).cast().toList(); } Future> get_strategy_batch() async { final resultBatch = await kAmapCoreFluttifyChannel.invokeMethod("AMapNaviConfig::get_strategy_batch", [for (final __item__ in this) {'__this__': __item__}]); return (resultBatch as List).map((__result__) => (__result__ as int).toAMapDrivingStrategy()).cast().toList(); } //endregion //region setters Future set_appScheme_batch(List appScheme) async { await kAmapCoreFluttifyChannel.invokeMethod('AMapNaviConfig::set_appScheme_batch', [for (int __i__ = 0; __i__ < this.length; __i__++) {'__this__': this[__i__], "appScheme": appScheme[__i__]}]); } Future set_appName_batch(List appName) async { await kAmapCoreFluttifyChannel.invokeMethod('AMapNaviConfig::set_appName_batch', [for (int __i__ = 0; __i__ < this.length; __i__++) {'__this__': this[__i__], "appName": appName[__i__]}]); } Future set_destination_batch(List destination) async { await kAmapCoreFluttifyChannel.invokeMethod('AMapNaviConfig::set_destination_batch', [for (int __i__ = 0; __i__ < this.length; __i__++) {'__this__': this[__i__], "destination": destination[__i__]}]); } Future set_strategy_batch(List strategy) async { await kAmapCoreFluttifyChannel.invokeMethod('AMapNaviConfig::set_strategy_batch', [for (int __i__ = 0; __i__ < this.length; __i__++) {'__this__': this[__i__], "strategy": strategy[__i__].toValue()}]); } //endregion //region methods //endregion }