FinancialConnectionsAccountRefreshedBalanceEvent.fromJson constructor

FinancialConnectionsAccountRefreshedBalanceEvent.fromJson(
  1. Object? json
)

Implementation

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