build method
Implementation
Widget build(BuildContext context) {
switch (this) {
case ContentExtensionDescriptor():
return ItemTile(
title: title,
description: runtimeType.toString(),
onTap: () =>
vyuh.router.push('/developer/extensions/content', extra: this),
);
default:
return ItemTile(
title: title,
description: runtimeType.toString(),
);
}
}