hPCT method
SizedBox widget with a specified height
percentage
Implementation
Widget hPCT({required BuildContext context, required double heightPCT}) =>
SizedBox(
key: key,
height: context.percentHeight * heightPCT,
child: this,
);