Currency copyWith({ String? code, String? name, String? symbol, }) => Currency( code: code ?? this.code, name: name ?? this.name, symbol: symbol ?? this.symbol, );