h5 method

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

Implementation

@override
Widget h5(AppModel app, BuildContext context, String data,
        {TextAlign? textAlign, int? maxLines, bool? softWrap}) =>
    text(app, context, data,
        textAlign: textAlign, maxLines: maxLines, softWrap: softWrap);