LogInfo.fromJson constructor

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

Implementation

factory LogInfo.fromJson(Map<String, dynamic> json) =>
    LogInfo(className: json["className"], functionName: json["functionName"]);