createDoubleSeparator static method

String createDoubleSeparator(
  1. int length
)

Create a double line separator of specified length

Implementation

static String createDoubleSeparator(int length) {
  return createSeparator(length, '=');
}