h2 function

Widget h2(
  1. AppModel app,
  2. BuildContext context,
  3. String data, {
  4. TextAlign? textAlign,
  5. int? maxLines,
  6. bool? softWrap,
})

Implementation

Widget h2(
  AppModel app,
  BuildContext context,
  String data, {
  TextAlign? textAlign,
  int? maxLines,
  bool? softWrap,
}) =>
    StyleRegistry.registry().styleWithApp(app).frontEndStyle().textStyle().h2(
          app,
          context,
          data,
          textAlign: textAlign,
          maxLines: maxLines,
          softWrap: softWrap,
        );