value method

Future<double> value(
  1. double width
)

Get a double ratio for a given width.

Returns the ratio corresponding to the given width.

Implementation

Future<double> value(double width) async {
  return await _channel.invokeMethod("value", [width, adRequestIdentifier]);
}