TimestreamTimestamp.fromJson constructor

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

Implementation

factory TimestreamTimestamp.fromJson(Map<String, dynamic> json) {
  return TimestreamTimestamp(
    unit: json['unit'] as String,
    value: json['value'] as String,
  );
}