Timestamp.fromJson constructor
Implementation
factory Timestamp.fromJson(Map<String, dynamic> json) {
return Timestamp(
seconds: json.valueAsBigInt<BigInt?>('seconds', acceptCamelCase: true),
nanos: json.valueAsInt<int?>('nanos', acceptCamelCase: true),
);
}