Insets.all constructor

Insets.all(
  1. double all
)

Implementation

factory Insets.all(double all) =>
    Insets(left: all, top: all, right: all, bottom: all);