appSubTitle method

TextStyle? appSubTitle([
  1. dynamic template
])

Implementation

TextStyle? appSubTitle([dynamic template]) {
  switch (TemplateRF.get(template)!.name) {
    case TemplateNameRF.modern:
      return TextStyle(
        color: clientStyle?.appSubTitle?.textColor ?? Colors.white60,
        fontSize: clientStyle?.appSubTitle?.fontSize ?? 15,
        fontWeight: clientStyle?.appSubTitle?.fontWeight ?? FontWeight.bold,
        fontFamily: clientStyle?.appSubTitle?.fontFamily ??
            'Berlin Sans FB Demi Bold',
        decoration: TextDecoration.none,
      );
    case null:
    // TODO: Handle this case.
    case TemplateNameRF.material:
    // TODO: Handle this case.
    case TemplateNameRF.cupertino:
    // TODO: Handle this case.
    case TemplateNameRF.classic:
    // TODO: Handle this case.
  }
  return null;
}