forKey static method
Implementation
static TableColumnFormatter<Map<String, Object?>> forKey(
final String heading, {
required final String key,
}) {
return TableColumnFormatter<Map<String, Object?>>(
heading,
formatter: mapValueFormatter<Map<String, Object?>>(key: key),
);
}