format method

String format(
  1. CodeNode codeNode
)

Implementation

String format(CodeNode codeNode) {
  String unFormattedCode = unFormatted(codeNode);
  String formattedCode = dartFormatter.format(unFormattedCode);
  return formattedCode;
}