SetupIntentSucceededEvent.fromJson constructor

SetupIntentSucceededEvent.fromJson(
  1. Object? json
)

Implementation

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