CustomText.small constructor

CustomText.small(
  1. String text
)

Implementation

factory CustomText.small(String text) {
  return CustomText(
    text: text,
    size: 12,
    color: Colors.grey[600],
  );
}