ModuleImport.fromJson constructor

ModuleImport.fromJson(
  1. Object? json_
)

Returns a new instance from a JSON value. May throw if the value does not have the expected structure.

Implementation

factory ModuleImport.fromJson(Object? json_) {
  final json = json_ is Map
      ? _spec.fields.map((f) => json_[f.label]).toList(growable: false)
      : json_;
  return switch (json) {
    [final module, final name, final type] ||
    (final module, final name, final type) =>
      ModuleImport(
        module: module is String ? module : (module! as ParsedString).value,
        name: name is String ? name : (name! as ParsedString).value,
        type: ExternType.fromJson(type),
      ),
    _ => throw Exception('Invalid JSON $json_')
  };
}