AppbarTitle constructor

AppbarTitle({
  1. Key? key,
  2. required String text,
  3. EdgeInsetsGeometry? margin,
  4. Function? onTap,
})

Implementation

AppbarTitle({
  Key? key,
  required this.text,
  this.margin,
  this.onTap,
}) : super(
        key: key,
      );