getMe method
Get basic info of your account
Implementation
Future<Map> getMe({
String? apiKey,
}) async {
Map result = await invoke(
uriPath: "account/info",
apiKey: apiKey,
statusCodes: [200],
specialTypeName: "account",
);
return result;
}