getChainIdentifier method

Future<String> getChainIdentifier()

Implementation

Future<String> getChainIdentifier() async {
  final response = await _client.ledgerService.getServiceInfo(GetServiceInfoRequest());
  return response.chainId;
}