getGPPSid static method

Future<List<int>?> getGPPSid()

Get GPP section IDs

Returns array of GPP section IDs, or null if not set.

Implementation

static Future<List<int>?> getGPPSid() async {
  try {
    final result = await _invokeMethod<List>('getGPPSid');
    return result?.cast<int>();
  } catch (e) {
    return null;
  }
}