IsolateException.fromJson constructor

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

Implementation

factory IsolateException.fromJson(Map<String, dynamic> json) {
  final error = json['error'].toString();
  final stackTrace = json['stackTrace'].toString();
  return IsolateException.fromString(error, stackTrace);
}