getMe method

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

Get basic info of your account

DOCS: https://doodstream.com/api-docs#account

Implementation

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