forTimestampKey static method

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

Implementation

static TableColumnFormatter<Map<String, Object?>> forTimestampKey(
  String heading, {
  required String key,
}) {
  return TableColumnFormatter<Map<String, Object?>>(
    heading,
    formatter: mapValueFormatter<Map<String, Object?>>(key: key),
    isTimestamp: true,
  );
}