fromJson static method
Implementation
// ignore: prefer_constructors_over_static_methods
static DbUpdate fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
return DbUpdate(
database: mapValueOfType<String>(json, r'Database'),
updateScript: mapValueOfType<String>(json, r'UpdateScript'),
);
}
return null;
}