decode method

  1. @Deprecated('Use decodePath instead')
GraphicsCommandDecode decode(
  1. String text
)

Decode the path that is encoded in the EaselJS format. Please use the decodePath method.

Implementation

@Deprecated('Use decodePath instead')
GraphicsCommandDecode decode(String text) {
  final command = GraphicsCommandDecodeEaselJS(text);
  addCommand(command);
  return command;
}