IntRect.fromList constructor

IntRect.fromList(
  1. List rect
)

Implementation

IntRect.fromList(List<dynamic> rect)
    : left = rect[0],
      top = rect[1],
      width = rect[2],
      height = rect[3];