LogObject.fromJson constructor

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

Implementation

factory LogObject.fromJson(Map<String, dynamic> json) {
  return LogObject(
    feature: json['feature'],
    log: json['log'],
  );
}