NPatchInfoD constructor

NPatchInfoD({
  1. Pointer<NPatchInfoC>? originalPointer,
  2. RectangleD? source,
  3. int left = 0,
  4. int top = 0,
  5. int right = 0,
  6. int bottom = 0,
  7. NPatchLayout layout = .NPATCH_NINE_PATCH,
})

Implementation

NPatchInfoD({
  super.originalPointer,
  RectangleD? source,
  this.left = 0,
  this.top = 0,
  this.right = 0,
  this.bottom = 0,
  this.layout = .NPATCH_NINE_PATCH,
}) :
  source = source ?? .new();