LtiCluster constructor

LtiCluster({
  1. required LtiLaChannelInterface la,
  2. required LtiLrChannelInterface lr,
  3. required LtiLcChannelInterface lc,
  4. required LtiManagementInterface lm,
  5. 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!);
  }
}