poweredText function

RichText poweredText()

Implementation

RichText poweredText() {
  return RichText(
    text: TextSpan(
      text: 'Powered by',
      style: const TextStyle(
        color: Colors.black,
      ),
      children: [
        TextSpan(
          text: ' Common factor',
          style: TextStyle(
            color: payUnitOrangeColor,
          ),
        ),
      ],
    ),
  );
}