copyWith method

MiniSpacingTokens copyWith({
  1. double? xs,
  2. double? sm,
  3. double? md,
  4. double? lg,
  5. double? xl,
})

Implementation

MiniSpacingTokens copyWith({
  double? xs,
  double? sm,
  double? md,
  double? lg,
  double? xl,
}) {
  return MiniSpacingTokens(
    xs: xs ?? this.xs,
    sm: sm ?? this.sm,
    md: md ?? this.md,
    lg: lg ?? this.lg,
    xl: xl ?? this.xl,
  );
}