Files
customer-im-client-dev/packages/notification_sdk/lib/notification_sdk_method_channel.dart
2026-03-06 15:05:53 +08:00

18 lines
606 B
Dart

import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
import 'notification_sdk_platform_interface.dart';
/// An implementation of [NotificationSdkPlatform] that uses method channels.
class MethodChannelNotificationSdk extends NotificationSdkPlatform {
/// The method channel used to interact with the native platform.
@visibleForTesting
final methodChannel = const MethodChannel('notification_sdk');
@override
Future<String?> getPlatformVersion() async {
final version = await methodChannel.invokeMethod<String>('getPlatformVersion');
return version;
}
}