fromJson static method

RunLinks fromJson(
  1. dynamic value
)

Returns a new RunLinks instance and imports

Implementation

// ignore: prefer_constructors_over_static_methods
static RunLinks fromJson(dynamic value) {
  final json = value.cast<String, dynamic>();
  return RunLinks(
    self: mapValueOfType<String>(json, r'self'),
    task: mapValueOfType<String>(json, r'task'),
    retry: mapValueOfType<String>(json, r'retry'),
  );
}