auth method

Future<RespType> auth(
  1. String password
)

Implementation

Future<RespType> auth(String password) async {
  return tier0.execute([
    'AUTH',
    password,
  ]);
}