fromJson static method
Returns a new IEmployeeAuthorization instance and imports its values from
value
if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static IEmployeeAuthorization? fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
return IEmployeeAuthorization(
employeeId: mapValueOfType<int>(json, r'employeeId'),
organizationId: mapValueOfType<String>(json, r'organizationId'),
);
}
return null;
}