marginOnly method
Implementation
DefineMTextModifier marginOnly({
double? left,
double? top,
double? right,
double? bottom,
}) {
return this.copyWith(
valueMargin: (this.valueMargin ?? EdgeInsets.zero).copyWith(
left: left ?? this.valueMargin?.left,
right: right ?? this.valueMargin?.right,
top: top ?? this.valueMargin?.top,
bottom: bottom ?? this.valueMargin?.bottom,
),
);
}