User constructor

User(
  1. int id,
  2. bool? hasSignedUp,
  3. Map<String, String>? properties,
  4. Account? kakaoAccount,
  5. String? groupUserToken,
  6. DateTime? synchedAt,
  7. DateTime? connectedAt,
)

Implementation

User(this.id, this.hasSignedUp, this.properties, this.kakaoAccount,
    this.groupUserToken, this.synchedAt, this.connectedAt);