translateMichelsonExpressionToMicheline static method

String? translateMichelsonExpressionToMicheline(
  1. String code
)

Implementation

static String? translateMichelsonExpressionToMicheline(String code) {
  var result = Parser.parseMichelsonExpression(code);
  return result;
}