setTargetRect method

  1. @override
Future<bool?> setTargetRect(
  1. double w,
  2. double h
)
override

Implementation

@override
Future<bool?> setTargetRect(double w, double h) async {
  final success = await methodChannel.invokeMethod<bool>('setTargetRect', {'w': w, 'h': h});
  return success;
}