9 lines
206 B
Dart
9 lines
206 B
Dart
|
|
import 'simple_intent_receiver_platform_interface.dart';
|
|
|
|
class SimpleIntentReceiver {
|
|
Future<String?> getPlatformVersion() {
|
|
return SimpleIntentReceiverPlatform.instance.getPlatformVersion();
|
|
}
|
|
}
|