CustomerCashBalanceTransactionCreatedEvent.fromJson constructor
CustomerCashBalanceTransactionCreatedEvent.fromJson(
- Object? json
Implementation
factory CustomerCashBalanceTransactionCreatedEvent.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return CustomerCashBalanceTransactionCreatedEvent(
object: CustomerCashBalanceTransaction.fromJson(map['object']));
}