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