# File lib/fog/cloudstack/models/compute/flavors.rb, line 17
        def get(flavor_id)
          if flavor = service.list_service_offerings('id' => flavor_id)["listserviceofferingsresponse"]["serviceoffering"].first
            new(flavor)
          end
        rescue Fog::Compute::Cloudstack::BadRequest
          nil
        end