CustomerCashBalanceTransactionCreatedEvent.fromJson constructor

CustomerCashBalanceTransactionCreatedEvent.fromJson(
  1. Object? json
)

Implementation

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