Initial project
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
|
||||
//UseCase
|
||||
|
||||
import '../repositories/protocol_sdk_repository.dart';
|
||||
|
||||
class PlatformVersion
|
||||
{
|
||||
final ProtocolSdkRepository _repository;
|
||||
|
||||
const PlatformVersion(this._repository);
|
||||
|
||||
Future<String?> call() {
|
||||
return _repository.platformVersion();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user