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