- import 'package:flutter/foundation.dart';
- import 'package:flutter/services.dart';
- import 'map_google_android_platform_interface.dart';
- /// An implementation of [MapGoogleAndroidPlatform] that uses method channels.
- class MethodChannelMapGoogleAndroid extends MapGoogleAndroidPlatform {
- /// The method channel used to interact with the native platform.
- @visibleForTesting
- final methodChannel = const MethodChannel('map_google_android');
- }
|