getDomainGroupData static method

Future<Map<String, dynamic>?> getDomainGroupData()

returns a Map<String,dynamic> containing the information about all the categories and sdk IDs specific to a template configured for the user's geolocation.

Implementation

static Future<Map<String, dynamic>?> getDomainGroupData() async {
  final data = await _channel.invokeMethod('getDomainGroupData');
  return _encodeJson(data);
}