getServiceInfo method

  1. @override
Future<GetServiceInfoResponse> getServiceInfo()
override

Implementation

@override
Future<GetServiceInfoResponse> getServiceInfo() async {
  final bytes = await _call(
      _ledger, 'GetServiceInfo', GetServiceInfoRequest().writeToBuffer());
  return GetServiceInfoResponse.fromBuffer(bytes);
}