CustomText.body constructor

CustomText.body(
  1. String text
)

Implementation

factory CustomText.body(String text) {
  return CustomText(
    text: text,
    size: 16,
  );
}