getMaximumSectionCount static method

Future<int?> getMaximumSectionCount()

Implementation

static Future<int?> getMaximumSectionCount() async {
  final value = await _methodChannel.invokeMethod<int>(
    FCPChannelTypes.getMaximumSectionCount.name,
  );
  return value;
}