getDomainInfo static method

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

returns a Map<String,dynamic> containing all the information about the domain (application) including rulesets and template configurations.

Implementation

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