LogException.fromMap constructor

LogException.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory LogException.fromMap(Map<String, dynamic> json) => LogException(
      type: json["type"],
      message: json["message"],
      stackTrace: json["stackTrace"],
    );