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