dashFill static method

TwoColumnDetail dashFill(
  1. String label,
  2. String value
)

Creates a detail row with a dash fill.

Implementation

static TwoColumnDetail dashFill(String label, String value) {
  return TwoColumnDetail()
    ..left(label)
    ..right(value)
    ..fillChar('-');
}