fixed function

FixedTrackSize fixed(
  1. double sizeInPx, {
  2. String? debugLabel,
})

Returns a new track size that is exactly sizeInPx wide.

Implementation

FixedTrackSize fixed(double sizeInPx, {String? debugLabel}) =>
    FixedTrackSize(sizeInPx, debugLabel: debugLabel);