fromJson static method

Timestamp fromJson(
  1. Map<String, dynamic> json
)

Implementation

static Timestamp fromJson(Map<String, dynamic> json) {
  return Timestamp(
    start: json['start'],
    end: json['end'],
  );
}