getEgl method

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

Implementation

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

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

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