height method

int height(
  1. int? val, {
  2. Map<String, dynamic>? options,
})

Returns the current height of the video container in pixels.

Implementation

int height(int? val, {Map<String, dynamic>? options}) => val != null
    ? _callMethod('height($val, $options)')
    : _callMethod('height()');