DebugLog.fromJson constructor

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

Implementation

factory DebugLog.fromJson(Map<String, dynamic> json) {
  return DebugLog(
    line: json['line'] != null
        ? (json['line'] as List<dynamic>).cast<String>()
        : null,
  );
}