buildDetailText method

Widget buildDetailText(
  1. BuildContext context
)

Implementation

Widget buildDetailText(BuildContext context) {
  if (detailText != null) {
    return DefaultTextStyle(
      style: TextStyle(
        color: Color(0xff999999),
        fontSize: 13,
      ),
      child: detailText!,
    );
  } else {
    return Container();
  }
}