insets function
Implementation
EdgeInsets insets({double? left, double? top, double? right, double? bottom, double? hor, double? ver, double? all}) {
return EdgeInsets.fromLTRB(left ?? hor ?? all ?? 0, top ?? ver ?? all ?? 0, right ?? hor ?? all ?? 0, bottom ?? ver ?? all ?? 0);
}