handle method

Future<void> handle(
  1. MethodCall call
)

Implementation

Future<void> handle(MethodCall call) async {
  switch(call.method) {
    case "getConfidentialBounds":
      emitBounds();
  }
}