Response constructor

Response({
  1. dynamic partnerId,
  2. double? balance,
  3. String? currency,
})

Implementation

Response({
    this.partnerId,
    this.balance,
    this.currency,
});