getEgl_interface method

Future<List<int>> getEgl_interface(
  1. int textureId
)
override

Implementation

Future<List<int>> getEgl_interface(int textureId) async {
  final _args = {"textureId": textureId};

  final _result = await _channel.invokeMethod('getEgl', _args);

  return List<int>.from(_result);
}