onEmpty property

ResumeBuilder<Widget>? onEmpty
final

The onEmpty builder will ensure something is visually rendered and prevents an empty container from showing up.

both values can't be null, either data is null and onEmpty is defined or the onEmpty method is defined and data is null. The onEmpty can be used to return your own custom template widget.

Implementation

final ResumeBuilder<Widget>? onEmpty;