resizeTexture static method

  1. @override
Future<ThermionFlutterTexture?> resizeTexture(
  1. ThermionFlutterTexture texture,
  2. int width,
  3. int height,
  4. int offsetLeft,
  5. int offsetRight,
)

Implementation

@override
static Future<ThermionFlutterTexture?> resizeTexture(ThermionFlutterTexture texture,
    int width, int height, int offsetLeft, int offsetRight) async {
  return ThermionFlutterPlatform.instance
      .resizeTexture(texture, width, height, offsetLeft, offsetRight);
}