Insets.horizontal constructor

Insets.horizontal(
  1. double inset
)

Implementation

factory Insets.horizontal(double inset) =>
    Insets(left: inset, top: 0, right: inset, bottom: 0);