RequestIdEventModel.fromJson constructor

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

Creates a RequestIdEventModel object from a JSON map.

This constructor deserializes the JSON data into a RequestIdEventModel object.

Implementation

RequestIdEventModel.fromJson(Map<String, dynamic> json) {
  requestId = json['requestId'];
}