Credentials constructor

Credentials({
  1. String? mail,
  2. String? password,
  3. bool? isWebApp,
})

Implementation

factory Credentials({
  $core.String? mail,
  $core.String? password,
  $core.bool? isWebApp,
}) {
  final result = create();
  if (mail != null) {
    result.mail = mail;
  }
  if (password != null) {
    result.password = password;
  }
  if (isWebApp != null) {
    result.isWebApp = isWebApp;
  }
  return result;
}