dashFill static method
Creates a detail row with a dash fill.
Implementation
static TwoColumnDetail dashFill(String label, String value) {
return TwoColumnDetail()
..left(label)
..right(value)
..fillChar('-');
}
Creates a detail row with a dash fill.
static TwoColumnDetail dashFill(String label, String value) {
return TwoColumnDetail()
..left(label)
..right(value)
..fillChar('-');
}