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