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