build method
Builds this widget using the output context.
The build method is responsbile for building the tree of widgets below this one. It must never invoke the build or render methods of other widgets.
Implementation
@override
OutputWidget build(final OutputContext context) {
return OutputWidgetList([
InfoTextWidget('On plan: $planDisplayName'),
ProgressStreamWidget<Map<String, Object?>>(
initialMessage: 'Registering Serverpod Cloud project',
successMessage: 'Project registration successful.',
newParagraph: true,
),
if (includeSuccess)
const SuccessTextWidget(
'Serverpod Cloud project created.',
newParagraph: true,
),
]);
}