NPatchInfoD.nPatchInfo constructor
NPatchInfoD.nPatchInfo(
- RectangleD source,
- num left,
- num top,
- num right,
- num bottom,
- NPatchLayout layout,
Implementation
factory NPatchInfoD.nPatchInfo(
RectangleD source,
num left,
num top,
num right,
num bottom,
NPatchLayout layout,
) => NPatchInfoD(
source: source,
left: left.toInt(),
top: top.toInt(),
right: right.toInt(),
bottom: bottom.toInt(),
layout: layout,
);