copyWith method

SvgIconData copyWith({
  1. bool? reflectable,
  2. bool? reflected,
})

Create another instance of SvgIconData with specified configurations.

Implementation

SvgIconData copyWith({bool? reflectable, bool? reflected}) =>
    SvgIconData(name,
        prefix: prefix,
        reflectable: reflectable ?? this.reflectable,
        reflected: reflected ?? this.reflected);