IdentityObjectBuilder constructor

IdentityObjectBuilder({
  1. String? id,
  2. String? comment,
  3. String? email,
  4. String? name,
})

Implementation

IdentityObjectBuilder({
  String? id,
  String? comment,
  String? email,
  String? name,
})  : _id = id,
      _comment = comment,
      _email = email,
      _name = name;