getMyInfo method

Future<GetMyInfoResponse> getMyInfo()

Implementation

Future<GetMyInfoResponse> getMyInfo() async {
  ///  Retrieve wallet details and configuration about the currently authenticated wallet
  var request = GetMyInfoRequest();
  return client.getMyInfo(request,
      options: await buildMetadata(request: request));
}