spaceFill static method

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

Creates a detail row with a space fill instead of dots.

Implementation

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