loadFeed method

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

Implementation

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