map_google_android_method_channel.dart 445 B

1234567891011
  1. import 'package:flutter/foundation.dart';
  2. import 'package:flutter/services.dart';
  3. import 'map_google_android_platform_interface.dart';
  4. /// An implementation of [MapGoogleAndroidPlatform] that uses method channels.
  5. class MethodChannelMapGoogleAndroid extends MapGoogleAndroidPlatform {
  6. /// The method channel used to interact with the native platform.
  7. @visibleForTesting
  8. final methodChannel = const MethodChannel('map_google_android');
  9. }