SendEventResponse.fromJson constructor

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

Implementation

factory SendEventResponse.fromJson(Map<String, dynamic> json) {
  return SendEventResponse(
    absoluteTime: json['AbsoluteTime'] as String?,
    id: json['Id'] as String?,
  );
}