location property

String get location

Implementation

String get location {
    if (classLocation.isNotEmpty && functionLocation.isNotEmpty) return classLocation + '.' + functionLocation + '()';
    return classLocation + functionLocation + '()';
}