mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-12 20:47:42 +01:00
11 lines
340 B
Dart
11 lines
340 B
Dart
|
import 'package:flutter/services.dart';
|
||
|
import 'package:np_async/np_async.dart';
|
||
|
import 'package:np_gps_map/src/k.dart' as k;
|
||
|
|
||
|
class Native {
|
||
|
static Future<bool> isNewGMapsRenderer() =>
|
||
|
_methodChannel.invokeMethod<bool>("isNewGMapsRenderer").notNull();
|
||
|
|
||
|
static const _methodChannel = MethodChannel("${k.libId}/gps_map_method");
|
||
|
}
|