IntSize.fromList constructor

IntSize.fromList(
  1. List<int> size
)

Implementation

IntSize.fromList(List<int> size)
    : width = size[0],
      height = size[1];