createTexture static method

Future<ThermionFlutterTexture?> createTexture(
  1. int width,
  2. int height,
  3. int offsetLeft,
  4. int offsetRight,
)

Implementation

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