getMaxNumFocusAreas method

Future<int> getMaxNumFocusAreas()

Gets the maximum number of focus areas supported.

This is the maximum length of the list in setFocusAreas and getFocusAreas.

Implementation

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