formatShareSubject function

String formatShareSubject(
  1. dynamic item,
  2. dynamic type,
  3. dynamic title
)

Implementation

String formatShareSubject(item, type, title) {
  return 'Afrostories | $type ${(title != null && title.isNotEmpty) ? ' | $title' : ''}';
}