addList method
Add a list of 'Controllers' to be associated with this StatX object.
Implementation
@override
List<String> addList(List<StateXController>? list) {
if (list == null) {
return <String>[];
}
// Associate a list of 'Controllers' to this StateX object at one time.
return super.addList(list);
}