MyVerticalTwoDimensionBean constructor

MyVerticalTwoDimensionBean({
  1. int? id,
  2. String? title,
  3. int idx = 0,
  4. bool current = false,
  5. List<MyVerticalTwoDimensionBean>? children,
})

Implementation

MyVerticalTwoDimensionBean(
    {this.id, this.title, this.idx = 0, this.current = false, this.children});