KeyValueRow.text constructor

KeyValueRow.text(
  1. String key,
  2. String value
)

Create from a string value

Implementation

factory KeyValueRow.text(String key, String value) =>
    KeyValueRow(key: key, value: span([text(value)]));