login static method

Future<NCMBUser> login(
  1. String userName,
  2. String password
)

ID認証を行う userName ユーザー名 password パスワード

Implementation

static Future<NCMBUser> login(String userName, String password) async {
  Map _fields = {'userName': userName, 'password': password};
  NCMBRequest r = new NCMBRequest();
  Map response =
      await r.exec('GET', 'users', queries: _fields, path: 'login');
  var user = NCMBUser();
  user.setLoginResponse(response);
  return user;
}