registerTexture method
Register a texture to this stream.
Implementation
@override
Future<int?> registerTexture(Map<String, dynamic> params) async {
assert(_memory != null);
params["memory"] = _memory;
return RtmpStreamPlatform.instance.registerTexture(params);
}