aboutLabel method

dynamic aboutLabel(
  1. dynamic context
)

Implementation

Widget aboutLabel(BuildContext context) {
  return Text(
    L10n.of(context).about,
    style: Theme.of(context).textTheme.titleMedium,
  );
}