loadSelfRenderFeed method
Implementation
Future<String?> loadSelfRenderFeed({
required String tagId,
double? width,
double? height,
Map<String, Object?> extra = const <String, Object?>{},
}) {
return MagicSdkPlatform.instance.invokeMethod<String>(
'loadSelfRenderFeed',
{'tagId': tagId, 'width': width, 'height': height, 'extra': extra},
);
}