toDartMethod method

DartMethod toDartMethod()

Implementation

DartMethod toDartMethod() {
  return DartMethod(
    offset: this.offset,
    end: this.end,
    name: this.name.toString(),
    body: _check(this),
  );
}