copyWith method

BridgeClassType copyWith({
  1. BridgeTypeRef? type,
})

Implementation

BridgeClassType copyWith({BridgeTypeRef? type}) =>
    BridgeClassType(type ?? this.type,
        isAbstract: isAbstract,
        $extends: $extends,
        $implements: $implements,
        $with: $with,
        generics: generics);