NikuEdgeInsets.only constructor

NikuEdgeInsets.only({
  1. double? top,
  2. double? left,
  3. double? bottom,
  4. double? right,
})

Implementation

factory NikuEdgeInsets.only({
  double? top,
  double? left,
  double? bottom,
  double? right,
}) =>
    NikuEdgeInsets(
      top: top,
      left: left,
      bottom: bottom,
      right: right,
    );