LtiCluster constructor
- required LtiLaChannelInterface la,
- required LtiLrChannelInterface lr,
- required LtiLcChannelInterface lc,
- required LtiManagementInterface lm,
- LtiLtChannelInterface? lt,
Constructor.
Implementation
LtiCluster(
{required this.la,
required this.lr,
required this.lc,
required this.lm,
this.lt}) {
addSubInterface('LA', la);
addSubInterface('LR', lr);
addSubInterface('LC', lc);
addSubInterface('LM', lm);
if (lt != null) {
addSubInterface('LT', lt!);
}
}