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