| 12345678910111213141516171819 |
- package com.izouma.mobilecybergames;
- import io.flutter.plugin.common.MethodCall;
- import io.flutter.plugin.common.MethodChannel;
- public class ScreenStreamPlugin implements MethodChannel.MethodCallHandler {
- @Override
- public void onMethodCall(MethodCall methodCall, MethodChannel.Result result) {
- }
- public boolean start(String url) {
- return false;
- }
- public boolean stop() {
- return true;
- }
- }
|