blob: ed4c2349d3d11bd34ca19d70940b9ce864bb8926 [file] [log] [blame]
import 'dart:async';
import 'package:flutter/services.dart';
class InAppPurchase {
static const MethodChannel _channel = const MethodChannel('in_app_purchase');
static Future<String> get platformVersion async {
final String version = await _channel.invokeMethod('getPlatformVersion');
return version;
}
}