getAccountInviteCodes method

Future<XRPCResponse<InviteCodes>> getAccountInviteCodes({
  1. bool? includeUsed,
  2. bool? createAvailable,
})

Implementation

Future<core.XRPCResponse<InviteCodes>> getAccountInviteCodes({
  bool? includeUsed,
  bool? createAvailable,
}) async =>
    // ignore: deprecated_member_use_from_same_package
    await findInviteCodes(
      includeUsed: includeUsed,
      createAvailable: createAvailable,
    );