makeAPI function

FuseAPI makeAPI({
  1. int? restPort,
  2. int? grpcPort,
})

Implementation

FuseAPI makeAPI({
  int? restPort,
  int? grpcPort,
}) =>
    _FuseAPI(
      restPort: restPort,
      grpcPort: grpcPort,
    );