setSystemCursor method

Future<void> setSystemCursor(
  1. String name
)

Implementation

Future<void> setSystemCursor(String name) async {
  await _getMethodChannel()
      .invokeMethod(_getMethod(setCursorMethod), {"name": name});
}