TitleModifier constructor
const
TitleModifier({})
Creates a widget that describes this app to the Android operating system.
title
will default to the empty string if not supplied.
color
must be an opaque color (i.e. color.alpha must be 255 (0xFF)).
color
and child
are required arguments.
Implementation
const TitleModifier({
super.key,
super.child,
super.modifierKey,
this.title = '',
required this.color,
});