registerTexture method

  1. @override
Future<int?> registerTexture(
  1. Map<String, dynamic> params
)
override

Register a texture with FlutterTexture.

Implementation

@override
Future<int?> registerTexture(Map<String, dynamic> params) async {
  return await MethodChannelHaishinKit.channel
      .invokeMethod<int>("RtmpStream#registerTexture", params);
}