SubSource constructor

SubSource({
  1. String? id,
  2. String? projectSourceId,
  3. bool isSelected = false,
  4. String? name,
})

Implementation

SubSource({
    String? id,
    String? projectSourceId,
    bool isSelected = false,
    String? name,}){
  _id = id;
  _projectSourceId = projectSourceId;
  _isSelected = isSelected;
  _name = name;
}