registerSkill method
Register a skill bundle.
Implementation
@override
Future<void> registerSkill(SkillBundle bundle) async {
final id = bundle.manifest.id;
_bundles[id] = bundle;
_enabled.putIfAbsent(id, () => true);
}
Register a skill bundle.
@override
Future<void> registerSkill(SkillBundle bundle) async {
final id = bundle.manifest.id;
_bundles[id] = bundle;
_enabled.putIfAbsent(id, () => true);
}