shortStudyDescription method

String shortStudyDescription(
  1. String studyDescription
)

Implementation

String shortStudyDescription(String studyDescription) =>
    (studyDescription.length < 80)
        ? studyDescription
        : '${studyDescription.substring(0, 60)}...';