Skip to content

Commit f337d60

Browse files
authored
fix TradingPlatformDepositResponseModel for deriv x top up issue (#305)
1 parent f277e80 commit f337d60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/api/response/trading_platform_deposit_response_result.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ abstract class TradingPlatformDepositResponseModel {
1616
});
1717

1818
/// Information about deposit transaction, or status of demo account top up.
19-
final Map<String, dynamic>? tradingPlatformDeposit;
19+
final dynamic tradingPlatformDeposit;
2020
}
2121

2222
/// Trading platform deposit response class.
@@ -70,7 +70,7 @@ class TradingPlatformDepositResponse
7070

7171
/// Creates a copy of instance with given parameters.
7272
TradingPlatformDepositResponse copyWith({
73-
Map<String, dynamic>? tradingPlatformDeposit,
73+
dynamic tradingPlatformDeposit,
7474
}) =>
7575
TradingPlatformDepositResponse(
7676
tradingPlatformDeposit:

0 commit comments

Comments
 (0)