Account_AccountInfo method

Future<Map> Account_AccountInfo({
  1. String? apiKey,
})

Get basic info of your account

Implementation

Future<Map> Account_AccountInfo({
  String? apiKey,
}) async {
  return await getMe(
    apiKey: apiKey,
  );
}