SentAt.fromJson constructor

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

Implementation

factory SentAt.fromJson(Map<String, dynamic> json) => SentAt(
      seconds: json["seconds"],
      nanoseconds: json["nanoseconds"],
    );