forKey static method

TableColumnFormatter<Map<String, Object?>> forKey(
  1. String heading, {
  2. required String key,
})

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),
  );
}