CustomLayoutOption constructor

CustomLayoutOption({
  1. int? stateCount,
  2. required int startIndex,
})

Implementation

CustomLayoutOption({this.stateCount, required this.startIndex})
    : assert(startIndex != null, stateCount != null);