SdkParameter.fromJson constructor
Implementation
factory SdkParameter.fromJson({required Map<String, dynamic> json}) =>
SdkParameter(
apiKey: json['apiKey'],
siteId: json['siteId'],
pushEnabled: json['pushEnabled'] ?? true,
isSubscribed: json['isSubscribed'] ?? true,
);