EventSchemaBody.fromJson constructor

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

Implementation

EventSchemaBody.fromJson(Map<String, dynamic> json)
    : eventName = json["eventName"],
      eventSchema =
          (json["eventProperties"] as List).cast<Map<String, dynamic>>(),
      super.fromJson(json);