LogStreamFile.fromJson constructor
Parse from a json
Implementation
factory LogStreamFile.fromJson(Map<String, dynamic> json) => LogStreamFile(
path: json['path'],
maxFileSize: json['max_file_size'],
redirectStderr: json['redirect_stderr'],
extra: json['@extra'],
clientId: json['@client_id'],
);