fromJson static method

StoryAreaTypeVenue? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static StoryAreaTypeVenue? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return StoryAreaTypeVenue(
    venue: Venue.fromJson(tdMapFromJson(json['venue'])),
  );
}