getAccount method

Implementation

Future<ClientAccountInformation> getAccount() async {
  var clientAccountMap =
      await methodChannel.invokeMethod('Client/getAccount');
  ClientAccountInformation clientAccountInformation =
      ClientAccountInformation.fromMap(clientAccountMap);
  return clientAccountInformation;
}