Skip to content

Commit

Permalink
fix TradingPlatformDepositResponseModel for deriv x top up issue (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
emad-deriv authored Mar 8, 2024
1 parent f277e80 commit f337d60
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ abstract class TradingPlatformDepositResponseModel {
});

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

/// Trading platform deposit response class.
Expand Down Expand Up @@ -70,7 +70,7 @@ class TradingPlatformDepositResponse

/// Creates a copy of instance with given parameters.
TradingPlatformDepositResponse copyWith({
Map<String, dynamic>? tradingPlatformDeposit,
dynamic tradingPlatformDeposit,
}) =>
TradingPlatformDepositResponse(
tradingPlatformDeposit:
Expand Down

0 comments on commit f337d60

Please sign in to comment.