AboutEvent.fromJson constructor

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

Implementation

factory AboutEvent.fromJson(Map<String, dynamic> json) => AboutEvent(
      title: json["title"],
      description: json["description"],
    );