ServerIpAnnotation.fromElement constructor
ServerIpAnnotation.fromElement(
- DartObject object,
- ElementAnnotation annotation
Implementation
factory ServerIpAnnotation.fromElement(
DartObject object,
// ignore: avoid_unused_constructor_parameters
ElementAnnotation annotation,
) {
final pipe = object.getField('pipe')?.toTypeValue();
return ServerIpAnnotation(pipe: ServerPipe.fromType(pipe));
}