getFeedRealHeight method

Future<double?> getFeedRealHeight({
  1. required String tagId,
  2. String? adObjectId,
})

Implementation

Future<double?> getFeedRealHeight({
  required String tagId,
  String? adObjectId,
}) {
  return MagicSdkPlatform.instance.invokeMethod<double>('getFeedRealHeight', {
    'tagId': tagId,
    'adObjectId': adObjectId,
  });
}