RoleProfileModel constructor

const RoleProfileModel({
  1. required String id,
  2. required String orgId,
  3. required String name,
  4. String? description,
  5. required DateTime createdAt,
  6. List<RoleSkillExpectationModel>? expectations,
})

Implementation

const factory RoleProfileModel({
  required String id,
  required String orgId,
  required String name,
  String? description,
  required DateTime createdAt,
  List<RoleSkillExpectationModel>? expectations,
}) = _RoleProfileModel;