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