GRectCornerRadius constructor

GRectCornerRadius([
  1. double topLeft = 0,
  2. double topRight = 0,
  3. double bottomRight = 0,
  4. double bottomLeft = 0,
])

Creates a new GRectCornerRadius instance.

Implementation

GRectCornerRadius([
  this.topLeft = 0,
  this.topRight = 0,
  this.bottomRight = 0,
  this.bottomLeft = 0,
]);