15 lines
		
	
	
		
			593 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			593 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| // You have generated a new plugin project without specifying the `--platforms`
 | |
| // flag. A plugin project with no platform support was generated. To add a
 | |
| // platform, run `flutter create -t plugin --platforms <platforms> .` under the
 | |
| // same directory. You can also find a detailed instruction on how to add
 | |
| // platforms in the `pubspec.yaml` at
 | |
| // https://flutter.dev/to/pubspec-plugin-platforms.
 | |
| 
 | |
| import 'flutter_cocos_view_platform_interface.dart';
 | |
| 
 | |
| class FlutterCocosView {
 | |
|   Future<String?> getPlatformVersion() {
 | |
|     return FlutterCocosViewPlatform.instance.getPlatformVersion();
 | |
|   }
 | |
| }
 | 
