InitConnectionConfig.fromJson constructor
InitConnectionConfig.fromJson(
- Map<String, dynamic> json
)
Implementation
factory InitConnectionConfig.fromJson(Map<String, dynamic> json) {
return InitConnectionConfig(
alternativeBillingModeAndroid: json['alternativeBillingModeAndroid'] != null ? AlternativeBillingModeAndroid.fromJson(json['alternativeBillingModeAndroid'] as String) : null,
enableBillingProgramAndroid: json['enableBillingProgramAndroid'] != null ? BillingProgramAndroid.fromJson(json['enableBillingProgramAndroid'] as String) : null,
);
}