format method

String format([
  1. FormatTypes? type
])

Creates a String representation of the Fragment using the available type formats.

Implementation

String format([FormatTypes? type]) =>
    type != null ? impl.format(type.impl) : impl.format();