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