AcmSubject constructor

AcmSubject(
  1. Role role,
  2. String name,
  3. List<String> data,
  4. List<int> executors,
  5. List<int> controllers,
  6. List<int> owners
)

Implementation

AcmSubject(
  this.role,
  String name,
  List<String> data,
  List<int> executors,
  List<int> controllers,
  List<int> owners,
) : super(name, data, executors, controllers, owners) {
  _id = hashCode;
}