setTextureSize method

Future<V2TXLiveCode> setTextureSize(
  1. double width,
  2. double height
)

Implementation

Future<V2TXLiveCode> setTextureSize(double width, double height) async {
  var result = await _channel.invokeMethod('setTextureSize', {"width": width, "height": height});
  return _liveCodeWithResult(result);
}