buildLeading method
Implementation
Widget buildLeading(BuildContext context) {
return Padding(
padding: const EdgeInsetsDirectional.only(end: 16.0),
child: IconTheme.merge(
data: IconThemeData(
color: enabled
? Theme.of(context).colorScheme.onSurface
: Theme.of(context).disabledColor,
),
child: leading!,
),
);
}