parse static method

Timestamp parse(
  1. String formattedString
)

Create a Timestamp from DateTime.parse

Implementation

static Timestamp parse(String formattedString) =>
    DateTime.parse(formattedString).timestamp;