getMaxNumMeteringAreas method

Future<int> getMaxNumMeteringAreas()

Gets the maximum number of metering areas supported.

This is the maximum length of the list in setMeteringAreas and getMeteringAreas.

Implementation

Future<int> getMaxNumMeteringAreas() async {
  return await _channel.$getMaxNumMeteringAreas(this) as int;
}