FinancialConnectionsAccountCreatedEvent.fromJson constructor

FinancialConnectionsAccountCreatedEvent.fromJson(
  1. Object? json
)

Implementation

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