getCommonData static method

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

returns a Map<String,dynamic> which contains template based information like branding which includes keys for determining colors and styles in the UI specific to a template configured for the user's geolocation along with consent logging information.

Implementation

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