position method

DefineMColumnModifier position({
  1. double? top,
  2. double? bottom,
  3. double? left,
  4. double? right,
})

Implementation

DefineMColumnModifier position({
  double? top,
  double? bottom,
  double? left,
  double? right,
}) {
  return this.copyWith(
    valueTop: top,
    valueBottom: bottom,
    valueLeft: left,
    valueRight: right,
  );
}