p property

TextModifier get p

Implementation

TextModifier get p => WrappedText(
      style: (context, theme) => theme.typography.p,
      child: this,
      wrapper: (context, child) {
        return Padding(
          padding: const EdgeInsets.only(top: 24),
          child: child,
        );
      },
    );