User constructor

User({
  1. String? userId,
  2. String? userKey,
  3. String? teamId,
  4. String? clientUserId,
  5. DateTime? createdOn,
  6. List<ConnectedSource> connectedSources = const [],
  7. UserFallbackTimeZone? fallbackTimeZone,
})

Implementation

User({
  this.userId,
  this.userKey,
  this.teamId,
  this.clientUserId,
  this.createdOn,
  this.connectedSources = const [],
  this.fallbackTimeZone,
});