build method

  1. @override
String build()
override

Implementation

@override
String build() => CodeUnit.join([
      OneLine(depth: depth, body: '{'),
      if (body != null) ...body!(depth + 1),
      OneLine(depth: depth, body: '}')
    ]);