fromJson static method

Scripts fromJson(
  1. dynamic value
)

Returns a new Scripts instance and imports

Implementation

// ignore: prefer_constructors_over_static_methods
static Scripts fromJson(dynamic value) {
  final json = value.cast<String, dynamic>();
  return Scripts(
    scripts: Script.listFromJson(json[r'scripts']),
  );
}