splash method
Set splash screen configuration
image — splash image URL, data URI, or bundle:// reference
backgroundColor — background hex color (e.g., #FFFFFF)
duration — display duration in milliseconds
Implementation
ApplicationBuilder splash({
String? image,
String? backgroundColor,
int? duration,
}) {
_definition['splash'] = {
if (image != null) 'image': image,
if (backgroundColor != null) 'backgroundColor': backgroundColor,
if (duration != null) 'duration': duration,
};
return this;
}