Compiler.deserialize constructor

Compiler.deserialize(
  1. Object serialized
)

Converts a JSON-safe representation generated by serialize back into a Compiler.

Note that custom Compiler implementations are not supported.

Implementation

factory Compiler.deserialize(Object serialized) => builtIn
    .firstWhere((compiler) => compiler.identifier == serialized as String);