ClosureInfo.fromJson constructor

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

Implementation

ClosureInfo.fromJson(Map<String, dynamic> json) {
  closureFunctionName = json['closureFunctionName'];
  closureOwner = json['closureOwner'];
  closureOwnerClass = json['closureOwnerClass'];
  libraries = json['libraries'];
  funLine = json['funLine'];
  funColumn = json['funColumn'];
}