getPersonGroupsForPage static method

Future getPersonGroupsForPage(
  1. dynamic personId,
  2. dynamic page,
  3. dynamic size
)

Implementation

static Future<dynamic> getPersonGroupsForPage(personId, page, size) async {
  return await _channel
      .invokeMethod("getPersonGroupsForPage", [personId, page, size]);
}