fromJson static method
Returns a new IsOnboarding instance and imports
Implementation
// ignore: prefer_constructors_over_static_methods
static IsOnboarding fromJson(dynamic value) {
final json = value.cast<String, dynamic>();
return IsOnboarding(
allowed: mapValueOfType<bool>(json, r'allowed'),
);
}