insets property

EdgeInsets insets

The insets of the texture as normalized values. The insets define the areas of the texture that will not be deformed as the sprite stretches.

Implementation

EdgeInsets get insets => _insets;
void insets=(EdgeInsets insets)

Implementation

set insets(EdgeInsets insets) {
  _insets = insets;
  _isDirty = true;
}