fromJson static method

RunManually fromJson(
  1. dynamic value
)

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', ''),
  );
}