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