operator + method

Icon operator +(
  1. num inflation
)

➕ "Add" to Icon

Icon operator +(num inflation)

Returns this Icon but copyWith an icon.size incremented by inflation.

➕ ➡ size += inflation

Implementation

Icon operator +(num inflation) => copyWith(size: (size ?? 0) + inflation);