CustomClaims constructor

CustomClaims({
  1. String? projectId,
  2. String? password,
  3. KeyType? type,
})

Implementation

factory CustomClaims({
  $core.String? projectId,
  $core.String? password,
  KeyType? type,
}) {
  final _result = create();
  if (projectId != null) {
    _result.projectId = projectId;
  }
  if (password != null) {
    _result.password = password;
  }
  if (type != null) {
    _result.type = type;
  }
  return _result;
}