setPaddingTop method

DefineMImageModifier setPaddingTop(
  1. double value
)

Implementation

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