only static method
Creates insets with only specified values.
Implementation
static EdgeInsetsMix only({
double? left,
double? right,
double? top,
double? bottom,
}) {
return .new(top: top, bottom: bottom, left: left, right: right);
}
Creates insets with only specified values.
static EdgeInsetsMix only({
double? left,
double? right,
double? top,
double? bottom,
}) {
return .new(top: top, bottom: bottom, left: left, right: right);
}