mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 11:59:30 +00:00
linting
This commit is contained in:
parent
2d7a50a5a1
commit
4ae7876322
1 changed files with 0 additions and 19 deletions
|
@ -42,23 +42,4 @@ class Fiat {
|
|||
|
||||
return map;
|
||||
}
|
||||
|
||||
Fiat copyWith({
|
||||
String? ticker,
|
||||
String? name,
|
||||
Decimal? min_amount,
|
||||
Decimal? max_amount,
|
||||
}) {
|
||||
return Fiat(
|
||||
ticker: ticker ?? this.ticker,
|
||||
name: name ?? this.name,
|
||||
min_amount: min_amount ?? this.min_amount,
|
||||
max_amount: max_amount ?? this.max_amount,
|
||||
);
|
||||
}
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
return "Fiat: ${toJson()}";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue