spaceFill static method
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(' ');
}
Creates a detail row with a space fill instead of dots.
static TwoColumnDetail spaceFill(String label, String value) {
return TwoColumnDetail()
..left(label)
..right(value)
..fillChar(' ');
}