Skip to content

Commit

Permalink
forgot the comma
Browse files Browse the repository at this point in the history
  • Loading branch information
stijn1989 authored Jul 13, 2022
1 parent ea3bd61 commit 8eed0d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/timeline.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class TimelineProperties {
const TimelineProperties({Color? lineColor, double? lineWidth, double? iconSize, double? gap})
: lineColor = lineColor ?? const Color(0xFF333333),
lineWidth = lineWidth ?? 2.5,
iconSize = iconSize ?? TimelineBoxDecoration.DEFAULT_ICON_SIZE
iconSize = iconSize ?? TimelineBoxDecoration.DEFAULT_ICON_SIZE,
gap = gap ?? 0.0;
}

Expand Down

0 comments on commit 8eed0d4

Please sign in to comment.