doubleDottedUnderline method

Widget doubleDottedUnderline({
  1. double thickness = 1,
  2. double gapWithText = 2,
  3. Color color = Colors.black,
  4. bool isCenter = false,
})

For make Double Dotted Underline

Implementation

Widget doubleDottedUnderline({
  double thickness = 1,
  double gapWithText = 2,
  Color color = Colors.black,
  bool isCenter = false,
}) =>
    Underline(
      text: this,
      isCenter: isCenter,
      gap: gapWithText,
      height: thickness,
      width: 2,
      color: color,
      isDouble: true,
    );