EventInfo.fromJson constructor

EventInfo.fromJson(
  1. String str
)

Implementation

factory EventInfo.fromJson(String str) {
  return EventInfo.fromMap(json.decode(str));
}