mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-08 18:28:53 +01:00
10 lines
340 B
Dart
10 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");
|
|
}
|