BillingMeterResourceBillingMeterValue.fromJson constructor

BillingMeterResourceBillingMeterValue.fromJson(
  1. Object? json
)

Implementation

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