Connection constructor

Connection({
  1. required String id,
  2. required String name,
  3. required String type,
  4. bool? revoked,
  5. List<Integration>? integrations,
  6. required bool verified,
  7. required bool friendSync,
  8. required bool showActivity,
  9. required int visibility,
})

Implementation

Connection({
  required this.id,
  required this.name,
  required this.type,
  this.revoked,
  this.integrations,
  required this.verified,
  required this.friendSync,
  required this.showActivity,
  required this.visibility,
});