loadSelfRenderFeed method

Future<String?> loadSelfRenderFeed({
  1. required String tagId,
  2. double? width,
  3. double? height,
  4. Map<String, Object?> extra = const <String, Object?>{},
})

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},
  );
}