getContentHeight method

Future<int?> getContentHeight()

Gets the height of the HTML content.

Supported Platforms/Implementations:

Implementation

Future<int?> getContentHeight() async {
  Map<String, dynamic> args = <String, dynamic>{};
  return await _channel.invokeMethod('getContentHeight', args);
}