copyWith method

EmblemIcon copyWith({
  1. SvgWrapper? svgWrapper,
  2. IconPosition? position,
})

Implementation

EmblemIcon copyWith({
  SvgWrapper? svgWrapper,
  IconPosition? position,
}) {
  return EmblemIcon(
    svgWrapper: svgWrapper ?? this.svgWrapper,
    position: position ?? this.position,
  );
}