AdMucisText.normal constructor

const AdMucisText.normal(
  1. String text, {
  2. Key? key,
  3. TextStyle? style,
  4. bool? enableOffset,
})

Implementation

const AdMucisText.normal(
  String text, {
  Key? key,
  TextStyle? style,
  bool? enableOffset,
}) : this(
        key: key,
        text: text,
        style: style,
        defaultStyle: StandardTextStyle.normal,
        enableOffset: enableOffset,
      );