ConfigurationBbposWiseposE.fromJson constructor

ConfigurationBbposWiseposE.fromJson(
  1. 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));
}