DetailViewContent constructor

DetailViewContent({
  1. Key? key,
  2. required TransitData transitData,
})

Implementation

DetailViewContent({
  Key? key,
  required this.transitData,
}) : super(key: key) {
  headerTextStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.bold,
  );

  stopTextStyle = const TextStyle(
    fontSize: 18,
    fontWeight: FontWeight.bold,
  );

  stopTimeTextStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.bold,
  );

  transportTextStyle = const TextStyle(
    fontSize: 16,
    // fontWeight: FontWeight.w600,
  );

  feeTextStyle = const TextStyle(
    fontSize: 14,
  );
}