format static method

String format(
  1. DateTime timestamp,
  2. String pattern
)

Implementation

static String format(DateTime timestamp, String pattern) {
  return DateFormat(pattern).format(timestamp);
}