marginTop method

DefineMImageModifier marginTop(
  1. double value
)

Implementation

DefineMImageModifier marginTop(double value) {
  return this.copyWith(
    valueMargin: (this.valueMargin ?? EdgeInsets.zero).copyWith(top: value),
  );
}