getCurrentVideoDisplayInfo method
Returns current video display info after the first valid video size arrives.
Implementation
Future<Map<String, dynamic>> getCurrentVideoDisplayInfo() async {
final v = await _invoke<dynamic>('getCurrentVideoDisplayInfo');
return v is Map ? Map<String, dynamic>.from(v) : <String, dynamic>{};
}