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