1
0
mirror of https://gitlab.com/veilid/veilid.git synced 2025-03-16 10:56:10 -04:00
2022-01-27 22:02:16 -05:00

14 lines
349 B
Dart

import 'dart:async';
import 'package:flutter/services.dart';
import 'package:veilid/bridge_generated.dart';
class Veilid {
static const MethodChannel _channel = MethodChannel('veilid');
static Future<String?> get platformVersion async {
final String? version = await _channel.invokeMethod('getPlatformVersion');
return version;
}
}